home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Genie / Projects / Pedestal / Source / Sources / Streams / PedStreamOutput.cc < prev   
Encoding:
C/C++ Source or Header  |  2000-06-24  |  326 b   |  32 lines

  1. /*    ==================
  2.  *    PedStreamOutput.cc
  3.  *    ==================
  4.  */
  5.  
  6. #include <string.h>
  7.  
  8. #include "PedStreamOutput.hh"
  9. #include "PedBuffer.hh"
  10.  
  11. PedStreamOutput::PedStreamOutput()
  12. {
  13.  
  14. }
  15.  
  16. PedStreamOutput::~PedStreamOutput()
  17. {
  18.  
  19. }
  20.  
  21. short
  22. PedStreamOutput::Flush()
  23. {
  24.     return 0;
  25. }
  26.  
  27. short
  28. PedStreamOutput::PutByte()
  29. {
  30.     return -1;
  31. }
  32.